home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.20041116-20060924 / 000294_JDanSkinner@JDanSkinner.com_Thu Mar 30 13:00:49 2006.msg < prev    next >
Internet Message Format  |  2006-09-27  |  3KB

  1. Path: newsmaster.cc.columbia.edu!panix!chiapp19.algx.com!allegiance!newspeer.monmouth.com!guardian.oit.duke.edu!news.glorb.com!postnews.google.com!i39g2000cwa.googlegroups.com!not-for-mail
  2. From: JDanSkinner@JDanSkinner.com
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: run start \v(browser) question
  5. Date: 28 Mar 2006 06:25:12 -0800
  6. Organization: http://groups.google.com
  7. Lines: 47
  8. Message-ID: <1143555912.395495.282030@i39g2000cwa.googlegroups.com>
  9. References: <4FNUf.48521$VV4.774525@ursa-nb00s0.nbnet.nb.ca>
  10. NNTP-Posting-Host: 24.159.192.106
  11. Mime-Version: 1.0
  12. Content-Type: text/plain; charset="iso-8859-1"
  13. X-Trace: posting.google.com 1143555917 17610 127.0.0.1 (28 Mar 2006 14:25:17 GMT)
  14. X-Complaints-To: groups-abuse@google.com
  15. NNTP-Posting-Date: Tue, 28 Mar 2006 14:25:17 +0000 (UTC)
  16. In-Reply-To: <4FNUf.48521$VV4.774525@ursa-nb00s0.nbnet.nb.ca>
  17. User-Agent: G2/0.2
  18. X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko/20050915 Firefox/1.0.7,gzip(gfe),gzip(gfe)
  19. Complaints-To: groups-abuse@google.com
  20. Injection-Info: i39g2000cwa.googlegroups.com; posting-host=24.159.192.106;
  21.    posting-account=5JPUcQwAAAB6TGKSwwkRxsWxWFx0QQ_3
  22. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15549
  23.  
  24.  
  25. Scott Caissie wrote:
  26. > I'm trying to find out an easy way to use this \v(browser) command so that
  27. > its universal.
  28. > Seems straight forward enough.
  29. >
  30. > run \v(browser) "asdfljasdf" ; works but doesn't close the cmd.exe which is
  31. > what I want.
  32. > run start \v(browser) ; does not work. It just opens and sits at cmd and
  33. > doesn't load iexplorer.
  34. > run start iexplore "asdflajsd" works fine.
  35. >
  36. > The variable itself stores the quotation marks I believe, which is likely
  37. > causing a problem. Bug or not? Strip the quotation marks and the path to
  38. > make use of it? Seems odd to even attempt to do so with an embedded
  39. > variable. Suppose to be usable as is. Or am I doing something wrong?
  40.  
  41. I followed this thread with some interest.
  42. A little research exposed the following:
  43.  
  44. Start-->Run-->Cmd
  45.  
  46. Microsoft Windows XP [Version 5.1.2600]
  47. (C) Copyright 1985-2001 Microsoft Corp.
  48.  
  49. C:\Documents and Settings\root>cd\
  50.  
  51. (The following calls IE while CMD.EXE remains active.)
  52. C:\>"c:\program files\internet explorer\iexplore.exe"
  53.  
  54. (The following forks another CMD task with the full IE path in the
  55. header,
  56. IE does not run.)
  57. C:\>start "c:\program files\internet explorer\iexplore.exe"
  58.  
  59. (The following calls IE )
  60. C:\>C:\progra~1\intern~1\iexplore.exe
  61.  
  62. (The following forks IE)
  63. C:\> start C:\progra~1\intern~1\iexplore.exe
  64.  
  65. The results would seem to be consistent with your K95
  66. experience, but in my case K95 is not running at all.
  67. If it were me I'd focus my anomoly research on start.
  68.  
  69. Regards...Dan.
  70.